home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / php / pear / PEAR / tests / pear_info.php
PHP Script  |  2004-03-24  |  2KB  |  38 lines

  1. <?php
  2. /* vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4: */
  3. // +----------------------------------------------------------------------+
  4. // | PHP version 4                                                        |
  5. // +----------------------------------------------------------------------+
  6. // | Copyright (c) 1997-2002 The PHP Group                                |
  7. // +----------------------------------------------------------------------+
  8. // | This source file is subject to version 2.0 of the PHP license,       |
  9. // | that is bundled with this package in the file LICENSE, and is        |
  10. // | available at through the world-wide-web at                           |
  11. // | http://www.php.net/license/2_02.txt.                                 |
  12. // | If you did not receive a copy of the PHP license and are unable to   |
  13. // | obtain it through the world-wide-web, please send a note to          |
  14. // | license@php.net so we can mail you a copy immediately.               |
  15. // +----------------------------------------------------------------------+
  16. // | Authors: Davey Shafik <davey@pixelated-dreams.com>                   |
  17. // +----------------------------------------------------------------------+
  18. //
  19. // $Id: pear_info.php,v 1.5 2003/05/12 11:40:57 davey Exp $
  20.  
  21. /* May be required on slower (dial-up) connections
  22. ini_set('default_socket_timeout',600);
  23. ini_set('max_execution_time',600);
  24. ini_set('max_input_time',600); */
  25.  
  26. // require the PEAR_Info file
  27. require_once 'PEAR/Info.php';
  28.  
  29. // If you need to set a http_proxy uncomment the line below
  30. // PEAR_Info::setProxy('your.proxy.here');
  31.  
  32. // Create PEAR_Info object
  33. $info = new PEAR_Info();
  34.  
  35. // Display PEAR_Info output
  36. $info->show();
  37.  
  38. ?>